home *** CD-ROM | disk | FTP | other *** search
/ Champak 132 / (Vol 132) Jun 09 2011.iso / Games / sushi-king.swf / scripts / DefineSprite_426 / frame_41 / DoAction.as
Encoding:
Text File  |  2011-06-09  |  361 b   |  17 lines

  1. this.stop();
  2. time_i = 5;
  3. this.onEnterFrame = function()
  4. {
  5.    if(_parent._parent.menu_mc.time_bar.bar._x < -176)
  6.    {
  7.       delete this.onEnterFrame;
  8.       this.play();
  9.    }
  10.    else
  11.    {
  12.       _parent._parent.menu_mc.time_bar.bar._x -= time_i;
  13.       _parent._parent.score += 150;
  14.       _parent._parent.FNscore("s",_parent._parent.score);
  15.    }
  16. };
  17.